home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / util / gnu / gnu_oleo_1_2_2.lha / oleo-1.2.2 / io-term.h < prev    next >
C/C++ Source or Header  |  1993-03-03  |  2KB  |  61 lines

  1. #ifndef IO_TERMH
  2. #define IO_TERMH
  3.  
  4. /*    Copyright (C) 1992, 1993 Free Software Foundation, Inc.
  5.  
  6. This program is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this software; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19. /*  t. lord    Sat Aug  8 15:43:52 1992    */
  20.  
  21.  
  22. #include "global.h"
  23.  
  24. extern CELLREF mkrow, mkcol;
  25. extern CELLREF setrow, setcol;
  26. extern unsigned int how_many;
  27.  
  28. /* The fd's that are selected on in the interact loop. */
  29. extern fd_set read_fd_set;
  30. extern fd_set exception_fd_set;
  31. extern fd_set read_pending_fd_set;
  32. extern fd_set exception_pending_fd_set;
  33.  
  34.  
  35. #ifdef __STDC__
  36. extern int global_cmd (int);
  37. extern void execute_cmd (char *);
  38. extern int real_get_chr (void);
  39. extern void read_mp_usr_fmt (char *);
  40. extern void read_mp_options (char *);
  41. extern void write_mp_options (FILE *);
  42. extern void sort (int, int (*)(int, int), void (*)(int, int), void (*)(int, int));
  43. extern void map_chr (int map);
  44. extern void nicely_goto_window (int n);
  45. void set_options (char *);
  46. #else
  47. extern int global_cmd ();
  48. extern void execute_cmd ();
  49. extern int real_get_chr ();
  50. extern void read_mp_usr_fmt ();
  51. extern void read_mp_options ();
  52. extern void write_mp_options ();
  53. extern void sort ();
  54. extern void map_chr ();
  55. extern void nicely_goto_window ();
  56. void set_options ();
  57.  
  58. #endif
  59.  
  60. #endif
  61.